home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / packet / monax25 / parse.h < prev    next >
Text File  |  1987-10-18  |  507b  |  39 lines

  1. /* parse.h Parse defines for report.exe */
  2. #define numcom 10
  3. struct {
  4.     char c[8];
  5.     } comtext [0] 
  6.     = {
  7.      "fnull   "
  8.     ,"CIRCUIT "
  9.     ,"END     "
  10.     ,"HELP    "
  11.     ,"INPUT   "
  12.     ,"OUTPUT  "
  13.     ,"QUIT    "
  14.     ,"RAW     "
  15.     ,"RECORD  "
  16.     ,"RR      "
  17.     ,"SELECT  "
  18.     ,"\0"
  19.  
  20.     };
  21.  
  22. enum  com_type {
  23.     c_fnull,    /* must be first */
  24.     c_circuit,
  25.     c_end,
  26.     c_help,
  27.     c_input,
  28.     c_output,
  29.     c_quit,
  30.     c_raw,
  31.     c_record,
  32.     c_rr,
  33.     c_select,
  34.     c_lnull,
  35.     }; 
  36. /* must be in the same order as comtext above */
  37.  
  38.  
  39.